home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / LIFE6__ / PROTO / U / LIFE_4A.H < prev    next >
Text File  |  1991-08-16  |  1KB  |  46 lines

  1.  
  2. /* ======================================================= */
  3.  
  4.  
  5. /*  Life_4a */
  6.  
  7. /* File name: Life_4a.h */
  8. /* Function: Handle a Window */
  9. /* History: 8/16/91 Original by Prototyper 3.0   */
  10.  
  11.  
  12. /* ======================================================= */
  13.  
  14. /* Initialize us so all our routines can be activated */
  15. void U_Init_Life_4a(void);
  16.  
  17. /* Close our window */
  18. void U_Close_Life_4a(void);
  19.  
  20. /* Handle resizing scrollbars */
  21. void U_Resized_Life_4a(Rect *OldRect);
  22.  
  23. /* Our window was moved */
  24. void U_Moved_Life_4a(Rect *OldRect);
  25.  
  26. /* Update our window, someone uncovered a part of us */
  27. void U_Update_Life_4a(void);
  28.  
  29. /* Open our window and draw everything */
  30. void U_Open_Life_4a(void);
  31.  
  32. /* Handle activation of our window */
  33. void U_Activate_Life_4a(Boolean Do_An_Activate);
  34.  
  35. /* Handle action to our window, like controls */
  36. void U_DoButton_Life_4a(long RefCon, ControlHandle theControl);
  37.  
  38. /* Handle any special events in out window */
  39. void U_DoEvent_Life_4a(EventRecord *myEvent);
  40.  
  41.  
  42.  
  43. /* ======================================================= */
  44.  
  45.  
  46.